home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1992 June: ROMin Holiday / ADC Developer CD (1992-06) (''ROMin Holiday'')_iso / Developer Connection - 06-1992.iso / Development Platforms / Apple II / Apple II Sample Code / APW.SC / SC01Shell / Asm.Shell / data.Build next >
Encoding:
Text File  |  1990-05-02  |  477 b   |  24 lines  |  [TEXT/pdos]

  1. *
  2. *   This exec file does a data fork build of
  3. *   the sample application: Shell
  4. *
  5. *   File:         Build
  6. *   Target:       Shell
  7. *   Source:       Shell.aii
  8. *
  9. *   Copyright Apple Computer, Inc. 1988-1990
  10. *   All rights reserved.
  11. *
  12.  
  13. echo "Assembling Shell.aii"
  14. assemble Shell.aii keep=Shell
  15.  
  16. echo "Linking..."
  17. linkiigs Shell.root Shell.a -o Shell.dfork
  18.  
  19. echo "Duplicating data and resource forks..."
  20. duplicate -d Shell.dfork Shell
  21. duplicate -r Shell.rfork Shell
  22.  
  23. echo "Done!"
  24.